home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Resources / Chat & Communication / Digsby build 37 / digsby_setup.exe / lib / email / mime / base.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-13  |  683b  |  17 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.5)
  3.  
  4. __all__ = [
  5.     'MIMEBase']
  6. from email import message
  7.  
  8. class MIMEBase(message.Message):
  9.     
  10.     def __init__(self, _maintype, _subtype, **_params):
  11.         message.Message.__init__(self)
  12.         ctype = '%s/%s' % (_maintype, _subtype)
  13.         self.add_header('Content-Type', ctype, **_params)
  14.         self['MIME-Version'] = '1.0'
  15.  
  16.  
  17.